home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / util / wb / THE.lha / T.H.E. / REXX / OS3.5 / CloseActiveWin.rexx next >
Encoding:
OS/2 REXX Batch file  |  1999-10-25  |  263 b   |  17 lines

  1. /*
  2.    $VER: CloseActiveWin.rexx 1.1 (25.10.99) Copyright (c) Nils Görs.
  3.  
  4.    Closes the active workbench window.
  5. */
  6.  
  7. options results
  8.  
  9. ADDRESS WORKBENCH
  10.  
  11. GETATTR OBJECT WINDOWS.ACTIVE
  12.  
  13. IF result ~= "root" THEN activewin = result
  14.         ELSE EXIT
  15.  
  16. WINDOW activewin CLOSE
  17.